home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Development / Source / MacGzip 0.1b2 Source / gzip-1.2.4 sources / gzip.h < prev    next >
Text File  |  1993-11-08  |  11KB  |  324 lines

  1. /* gzip.h -- common declarations for all gzip modules
  2.  * Copyright (C) 1992-1993 Jean-loup Gailly.
  3.  * This is free software; you can redistribute it and/or modify it under the
  4.  * terms of the GNU General Public License, see the file COPYING.
  5.  */
  6.  
  7. /*
  8.  * Modified:1993 by SPDsoft for MacGzip
  9.  *
  10.  */
  11.  
  12.  
  13. #if defined(__STDC__) || defined(PROTO)
  14. #  define OF(args)  args
  15. #else
  16. #  define OF(args)  ()
  17. #endif
  18.  
  19. #ifdef __STDC__
  20.    typedef void *voidp;
  21. #else
  22.    typedef char *voidp;
  23. #endif
  24.  
  25. /* I don't like nested includes, but the string and io functions are used
  26.  * too often
  27.  */
  28. #include <stdio.h>
  29. #if !defined(NO_STRING_H) || defined(STDC_HEADERS)
  30. #  include <string.h>
  31. #  if !defined(STDC_HEADERS) && !defined(NO_MEMORY_H) && !defined(__GNUC__)
  32. #    include <memory.h>
  33. #  endif
  34. #  define memzero(s, n)     memset ((voidp)(s), 0, (n))
  35. #else
  36. #  include <strings.h>
  37. #  define strchr            index 
  38. #  define strrchr           rindex
  39. #  define memcpy(d, s, n)   bcopy((s), (d), (n)) 
  40. #  define memcmp(s1, s2, n) bcmp((s1), (s2), (n)) 
  41. #  define memzero(s, n)     bzero((s), (n))
  42. #endif
  43.  
  44. #ifndef RETSIGTYPE
  45. #  define RETSIGTYPE void
  46. #endif
  47.  
  48. #define local static
  49.  
  50. typedef unsigned char  uch;
  51. typedef unsigned short ush;
  52. typedef unsigned long  ulg;
  53.  
  54. /* Return codes from gzip */
  55. #define OK      0
  56. #define ERROR   1
  57. #define WARNING 2
  58.  
  59. /* Compression methods (see algorithm.doc) */
  60. #define STORED      0
  61. #define COMPRESSED  1
  62. #define PACKED      2
  63. #define LZHED       3
  64. /* methods 4 to 7 reserved */
  65. #define DEFLATED    8
  66. #define MAX_METHODS 9
  67. extern int method;         /* compression method */
  68.  
  69. /* To save memory for 16 bit systems, some arrays are overlaid between
  70.  * the various modules:
  71.  * deflate:  prev+head   window      d_buf  l_buf  outbuf
  72.  * unlzw:    tab_prefix  tab_suffix  stack  inbuf  outbuf
  73.  * inflate:              window             inbuf
  74.  * unpack:               window             inbuf  prefix_len
  75.  * unlzh:    left+right  window      c_table inbuf c_len
  76.  * For compression, input is done in window[]. For decompression, output
  77.  * is done in window except for unlzw.
  78.  */
  79.  
  80. #ifndef    INBUFSIZ
  81. #  ifdef SMALL_MEM
  82. #    define INBUFSIZ  0x2000  /* input buffer size */
  83. #  else
  84. #    define INBUFSIZ  0x8000  /* input buffer size */
  85. #  endif
  86. #endif
  87. #define INBUF_EXTRA  64     /* required by unlzw() */
  88.  
  89. #ifndef    OUTBUFSIZ
  90. #  ifdef SMALL_MEM
  91. #    define OUTBUFSIZ   8192  /* output buffer size */
  92. #  else
  93. #    define OUTBUFSIZ  16384  /* output buffer size */
  94. #  endif
  95. #endif
  96. #define OUTBUF_EXTRA 2048   /* required by unlzw() */
  97.  
  98. #ifndef DIST_BUFSIZE
  99. #  ifdef SMALL_MEM
  100. #    define DIST_BUFSIZE 0x2000 /* buffer for distances, see trees.c */
  101. #  else
  102. #    define DIST_BUFSIZE 0x8000 /* buffer for distances, see trees.c */
  103. #  endif
  104. #endif
  105.  
  106. #ifdef DYN_ALLOC
  107. #  define EXTERN(type, array)  extern type * near array
  108. #  define DECLARE(type, array, size)  type * near array
  109. #  define ALLOC(type, array, size) { \
  110.       array = (type*)fcalloc((size_t)(((size)+1L)/2), 2*sizeof(type)); \
  111.       if (array == NULL) error("insufficient memory"); \
  112.    }
  113. #  define FREE(array) {if (array != NULL) fcfree(array), array=NULL;}
  114. #else
  115. #  define EXTERN(type, array)  extern type array[]
  116. #  define DECLARE(type, array, size)  type array[size]
  117. #  define ALLOC(type, array, size)
  118. #  define FREE(array)
  119. #endif
  120.  
  121. EXTERN(uch, inbuf);          /* input buffer */
  122. EXTERN(uch, outbuf);         /* output buffer */
  123. EXTERN(ush, d_buf);          /* buffer for distances, see trees.c */
  124. EXTERN(uch, window);         /* Sliding window and suffix table (unlzw) */
  125. #define tab_suffix window
  126. #ifndef MAXSEG_64K
  127. #  define tab_prefix prev    /* hash link (see deflate.c) */
  128. #  define head (prev+WSIZE)  /* hash head (see deflate.c) */
  129.    EXTERN(ush, tab_prefix);  /* prefix code (see unlzw.c) */
  130. #else
  131. #  define tab_prefix0 prev
  132. #  define head tab_prefix1
  133.    EXTERN(ush, tab_prefix0); /* prefix for even codes */
  134.    EXTERN(ush, tab_prefix1); /* prefix for odd  codes */
  135. #endif
  136.  
  137. extern unsigned insize; /* valid bytes in inbuf */
  138. extern unsigned inptr;  /* index of next byte to be processed in inbuf */
  139. extern unsigned outcnt; /* bytes in output buffer */
  140.  
  141. extern long bytes_in;   /* number of input bytes */
  142. extern long bytes_out;  /* number of output bytes */
  143. extern long header_bytes;/* number of bytes in gzip header */
  144.  
  145. #define isize bytes_in
  146. /* for compatibility with old zip sources (to be cleaned) */
  147.  
  148. extern int  ifd;        /* input file descriptor */
  149. extern int  ofd;        /* output file descriptor */
  150. extern char ifname[];   /* input file name or "stdin" */
  151. extern char ofname[];   /* output file name or "stdout" */
  152. extern char *progname;  /* program name */
  153.  
  154. extern long time_stamp; /* original time stamp (modification time) */
  155. extern long ifile_size; /* input file size, -1 for devices (debug only) */
  156.  
  157. typedef int file_t;     /* Do not use stdio */
  158. #define NO_FILE  (-1)   /* in memory compression */
  159.  
  160.  
  161. #define    PACK_MAGIC     "\037\036" /* Magic header for packed files */
  162. #define    GZIP_MAGIC     "\037\213" /* Magic header for gzip files, 1F 8B */
  163. #define    OLD_GZIP_MAGIC "\037\236" /* Magic header for gzip 0.5 = freeze 1.x */
  164. #define    LZH_MAGIC      "\037\240" /* Magic header for SCO LZH Compress files*/
  165. #define PKZIP_MAGIC    "\120\113\003\004" /* Magic header for pkzip files */
  166.  
  167. /* gzip flag byte */
  168. #define ASCII_FLAG   0x01 /* bit 0 set: file probably ascii text */
  169. #define CONTINUATION 0x02 /* bit 1 set: continuation of multi-part gzip file */
  170. #define EXTRA_FIELD  0x04 /* bit 2 set: extra field present */
  171. #define ORIG_NAME    0x08 /* bit 3 set: original file name present */
  172. #define COMMENT      0x10 /* bit 4 set: file comment present */
  173. #define ENCRYPTED    0x20 /* bit 5 set: file is encrypted */
  174. #define RESERVED     0xC0 /* bit 6,7:   reserved */
  175.  
  176. /* internal file attribute */
  177. #define UNKNOWN 0xffff
  178. #define BINARY  0
  179. #define ASCII   1
  180.  
  181. #ifndef WSIZE
  182. #  define WSIZE 0x8000     /* window size--must be a power of two, and */
  183. #endif                     /*  at least 32K for zip's deflate method */
  184.  
  185. #define MIN_MATCH  3
  186. #define MAX_MATCH  258
  187. /* The minimum and maximum match lengths */
  188.  
  189. #define MIN_LOOKAHEAD (MAX_MATCH+MIN_MATCH+1)
  190. /* Minimum amount of lookahead, except at the end of the input file.
  191.  * See deflate.c for comments about the MIN_MATCH+1.
  192.  */
  193.  
  194. #define MAX_DIST  (WSIZE-MIN_LOOKAHEAD)
  195. /* In order to simplify the code, particularly on 16 bit machines, match
  196.  * distances are limited to MAX_DIST instead of WSIZE.
  197.  */
  198.  
  199. extern int decrypt;        /* flag to turn on decryption */
  200. extern int exit_code;      /* program exit code */
  201. extern int verbose;        /* be verbose (-v) */
  202. extern int quiet;          /* be quiet (-q) */
  203. extern int level;          /* compression level */
  204. extern int test;           /* check .z file integrity */
  205. extern int to_stdout;      /* output to stdout (-c) */
  206. extern int save_orig_name; /* set if original name must be saved */
  207.  
  208. #define get_byte()  (inptr < insize ? inbuf[inptr++] : fill_inbuf(0))
  209. #define try_byte()  (inptr < insize ? inbuf[inptr++] : fill_inbuf(1))
  210.  
  211. /* put_byte is used for the compressed output, put_ubyte for the
  212.  * uncompressed output. However unlzw() uses window for its
  213.  * suffix table instead of its output buffer, so it does not use put_ubyte
  214.  * (to be cleaned up).
  215.  */
  216. #define put_byte(c) {outbuf[outcnt++]=(uch)(c); if (outcnt==OUTBUFSIZ)\
  217.    flush_outbuf();}
  218. #define put_ubyte(c) {window[outcnt++]=(uch)(c); if (outcnt==WSIZE)\
  219.    flush_window();}
  220.  
  221. /* Output a 16 bit value, lsb first */
  222. #define put_short(w) \
  223. { if (outcnt < OUTBUFSIZ-2) { \
  224.     outbuf[outcnt++] = (uch) ((w) & 0xff); \
  225.     outbuf[outcnt++] = (uch) ((ush)(w) >> 8); \
  226.   } else { \
  227.     put_byte((uch)((w) & 0xff)); \
  228.     put_byte((uch)((ush)(w) >> 8)); \
  229.   } \
  230. }
  231.  
  232. /* Output a 32 bit value to the bit stream, lsb first */
  233. #define put_long(n) { \
  234.     put_short((n) & 0xffff); \
  235.     put_short(((ulg)(n)) >> 16); \
  236. }
  237.  
  238. #define seekable()    0  /* force sequential output */
  239. #define translate_eol 0  /* no option -a yet */
  240.  
  241. #define tolow(c)  (isupper(c) ? (c)-'A'+'a' : (c))    /* force to lower case */
  242.  
  243. /* Macros for getting two-byte and four-byte header values */
  244. #define SH(p) ((ush)(uch)((p)[0]) | ((ush)(uch)((p)[1]) << 8))
  245. #define LG(p) ((ulg)(SH(p)) | ((ulg)(SH((p)+2)) << 16))
  246.  
  247. /* Diagnostic functions */
  248. #ifdef DEBUG
  249. #  define Assert(cond,msg) {if(!(cond)) error(msg);}
  250. #  define Trace(x) fprintf x
  251. #  define Tracev(x) {if (verbose) fprintf x ;}
  252. #  define Tracevv(x) {if (verbose>1) fprintf x ;}
  253. #  define Tracec(c,x) {if (verbose && (c)) fprintf x ;}
  254. #  define Tracecv(c,x) {if (verbose>1 && (c)) fprintf x ;}
  255. #else
  256. #  define Assert(cond,msg)
  257. #  define Trace(x)
  258. #  define Tracev(x)
  259. #  define Tracevv(x)
  260. #  define Tracec(c,x)
  261. #  define Tracecv(c,x)
  262. #endif
  263.  
  264. #define WARN(msg) { \
  265.             if (!quiet) { sprintf msg ; Calert(strerr); } \
  266.             if (exit_code == OK) exit_code = WARNING; \
  267. }
  268.  
  269.     /* in zip.c: */
  270. extern int zip        OF((int in, int out));
  271. extern int file_read  OF((char *buf,  unsigned size));
  272.  
  273.     /* in unzip.c */
  274. extern int unzip      OF((int in, int out));
  275. extern int check_zipfile OF((int in));
  276.  
  277.     /* in unpack.c */
  278. extern int unpack     OF((int in, int out));
  279.  
  280.     /* in unlzh.c */
  281. extern int unlzh      OF((int in, int out));
  282.  
  283.     /* in gzip.c */
  284. RETSIGTYPE abort_gzip OF((void));
  285.  
  286.         /* in deflate.c */
  287. void lm_init OF((int pack_level, ush *flags));
  288. ulg  deflate OF((void));
  289.  
  290.         /* in trees.c */
  291. void ct_init     OF((ush *attr, int *method));
  292. int  ct_tally    OF((int dist, int lc));
  293. ulg  flush_block OF((char *buf, ulg stored_len, int eof));
  294.  
  295.         /* in bits.c */
  296. void     bi_init    OF((file_t zipfile));
  297. void     send_bits  OF((int value, int length));
  298. unsigned bi_reverse OF((unsigned value, int length));
  299. void     bi_windup  OF((void));
  300. void     copy_block OF((char *buf, unsigned len, int header));
  301. extern   int (*read_buf) OF((char *buf, unsigned size));
  302.  
  303.     /* in util.c: */
  304. extern int copy           OF((int in, int out));
  305. extern ulg  updcrc        OF((uch *s, unsigned n));
  306. extern void clear_bufs    OF((void));
  307. extern int  fill_inbuf    OF((int eof_ok));
  308. extern void flush_outbuf  OF((void));
  309. extern void flush_window  OF((void));
  310. extern void write_buf     OF((int fd, voidp buf, unsigned cnt));
  311. extern char *strlwr       OF((char *s));
  312. extern char *basename     OF((char *fname));
  313. extern void make_simple_name OF((char *name));
  314. extern char *add_envopt   OF((int *argcp, char ***argvp, char *env));
  315. extern void error         OF((char *m));
  316. extern void warn          OF((char *a, char *b));
  317. extern void read_error    OF((void));
  318. extern void write_error   OF((void));
  319. extern void display_ratio OF((long num, long den, FILE *file));
  320. extern voidp xmalloc      OF((unsigned int size));
  321.  
  322.     /* in inflate.c */
  323. extern int inflate OF((void));
  324.